Java Script It!
See Also...
Info
Dialogue Boxes
 
Description
A java script application that allows users to make use of dialogue boxes within HTML documents.

Properties
Property Description
Dialogue Box Type The type of dialogue box that will appear to the user.
Dialogue Box Style The method which will be used to call the dialogue box. The dialogue box will appear when the user clicks on a form button or a hyperlink. Java Script It! will create both the form button or hyperlink for you.
Text Selection Select the text that will become the hyperlink which the user will click to call the dialogue box. Make sure the text that you select does not include any HTML tags. This property is only used if the Dialogue Box Style property is set to Text.
Button Insert Point The character position within the current document where the form button will be inserted for display. This property is only used if the Dialogue Box Style is set to Form Button.
Message The message text that will appear in the dialogue box.
Button Caption The text that will appear on the form button. This property is only used if the Dialogue Box Style is set to Form Button.
Confirm Setup Stores the various options and corresponding data (such as URLs) for the confirm dialogue box. If entering URLs you may use either relative or absolute paths. This property is used only if the Dialogue Box Type property is set to Confirm.

Browser Compatibility
Navigator 3 IE 3 Navigator 4++ IE 4++
compatible compatible compatible compatible

Aditional Information

  • An alert dialogue box is a simple windows message box where as the confirm dialgue box asks the user a question and then responds to their answer
  • The caption in the message box cannot be changed because it is created by the browser itself
  • You may add as many Dialgue Boxes to a document as you wish

Info
Support